home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00076_ClickIdentifyGroup.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  3.1 KB  |  167 lines

  1. --
  2. -- ClickIdentify
  3. --
  4.  
  5. -- this class handles all runtime game management
  6. -- for a typical C & I Game.
  7. -- for variations, extend this class in the individual activity.
  8.  
  9. -- constants:
  10. property delaySecs
  11.  
  12.  
  13. property ancestor
  14. property currentID
  15.  
  16. property responseFlag  -- play a response after correct answer
  17. property IDResponseFlag -- play a positive ID sound after clicking correct answer
  18. property currNum  -- the current clickable number in the series
  19. property maxNum   -- the maximum allowable clickables in the series
  20.  
  21. --JCODE
  22. global gUI
  23.  
  24. on new me
  25.   -- initialize constants:
  26.   set delaySecs = 1
  27.   
  28.   set ancestor = new (script "ClickSetUp")
  29.   
  30.   set card = 0
  31.   set responseFlag = TRUE
  32.   set IDResponseFlag = TRUE
  33.   set currNum = 0
  34.     set maxNum = 1000
  35.  
  36.   
  37.   -- add (the actorList, new (script "ObjectUpdater", me))
  38.   return me
  39. end
  40.  
  41.  
  42. on destruct me
  43.   if objectP (ancestor) then destruct (ancestor)
  44.   set ancestor = 0
  45. end
  46.  
  47.  
  48. on initializeRound me
  49.   set currNum = 0
  50.   initializeRound (ancestor)
  51.   hideAnswerCards (me)
  52.   initPlay (me)
  53. end
  54.  
  55.  
  56. ----------------------
  57. -- activity modifiers:
  58. ----------------------
  59.  
  60. -- 
  61. on noResponse me
  62.   set responseFlag = FALSE
  63. end
  64.  
  65.  
  66. on noIDSound me
  67.   set IDResponseFlag = FALSE
  68. end
  69.  
  70.  
  71. on setMaxClickables me, num
  72.   set maxNum = num
  73. end
  74.  
  75.  
  76. --------------------
  77. -- activity process:
  78. --------------------
  79.  
  80. -- handle a mouseDown for all activity sprites.
  81. -- return 1 if we have hit an activity sprite, return 0 otherwise for further processing:
  82.  
  83. on mouseDown me, spr
  84.   if not getPos(getClickableList(ancestor), spr) then return 0
  85.   
  86.   set match = checkMatch (me, spr)
  87.   
  88.   if match then
  89.     if responseFlag then playResponseSound(1, 1)
  90.     
  91.     -- play the proper "ID" sound:
  92.     if IDResponseFlag then playSprite (gUI, spr, #ID)
  93.     
  94.     -- if so, move the draggable off the screen and animate the 'hit' container:
  95.     showAnswerCard (me, spr, #single)
  96.     clearHandCursor([spr])
  97.     -- get the label of the positive animation and go there if it exists:
  98.     set lab = string (getID (me, spr))
  99.     
  100.     
  101.     -- if there is an animation label then play that label:
  102.     if the labelList contains lab then
  103.       clearPictLink (me)
  104.       go lab
  105.       
  106.       -- otherwise check to see if we are done with the activity:
  107.     else checkDoneLimit(me)
  108.     
  109.   else
  110.     playResponseSound(0, 1)
  111.   end if
  112.   
  113.   return 1
  114. end
  115.  
  116.  
  117. -- check to see if we are done.  
  118. -- if so, then do an action.
  119.  
  120. on done me
  121.   set currNum = currNum + 1
  122.   wait (me, 1)
  123.   clearPictLink (me)
  124.   if checkDone(ancestor) or (currNum >= maxNum) then 
  125.     wait (me, delaySecs)
  126.     go "finish"
  127.     return 1
  128.   else
  129.     initPlay (me)
  130.     return 0
  131.   end if
  132. end
  133.  
  134.  
  135. on checkDoneLimit me
  136.   set currNum = currNum + 1
  137.   wait (me, 1)
  138.   clearPictLink (me)
  139.   if checkDone (ancestor) or (currNum >= maxNum) then 
  140.     wait (me, delaySecs)
  141.     go "finish"
  142.     return 1
  143.   else
  144.     initPlay (me)
  145.     return 0
  146.   end if
  147. end
  148.  
  149.  
  150.  
  151. -- initialize an individual play:
  152.  
  153. on initPlay me
  154.   set activeSpr = initPlay (ancestor)
  155.   makePictLink (me, activeSpr)
  156.   
  157.   -- play the intro sound by sprite...
  158.     playSprite (gUI, activeSpr, #prompt)
  159.   
  160.   -- setUpBanner(gUI, currID)
  161.   set lst = getClickableList (me)
  162.   initHandCursor ("pointer", lst)
  163. end
  164.  
  165.  
  166.  
  167.